home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / files / tcpip / amiga / asrc29p.lha / pop3serv.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-29  |  381 b   |  31 lines

  1. /*
  2.  *    POP3 Server state machine
  3.  */
  4.  
  5. #include <stdio.h>
  6. #include "config.h"
  7. #include "commands.h"
  8.  
  9. /* Start POP3 Service */
  10. int pop3start(argc,argv,p)
  11. int argc;
  12. char *argv[];
  13. void *p;
  14. {
  15.     printf("POP3 Not available yet!\n");
  16.  
  17.     return 0;
  18. }
  19.  
  20. /* Shutdown POP3 Service */
  21. int pop3stop(argc,argv,p)
  22. int argc;
  23. char *argv[];
  24. void *p;
  25. {
  26.     printf("POP3 Not available yet!\n");
  27.  
  28.     return 0;
  29. }
  30.  
  31.